StartScreencastRequest

data class StartScreencastRequest(format: String?, quality: Int?, maxWidth: Int?, maxHeight: Int?, everyNthFrame: Int?)

Represents request frame that can be used with Page#startScreencast operation call.

Starts sending each frame using the screencastFrame event.

See also

Constructors

StartScreencastRequest
Link copied to clipboard
fun StartScreencastRequest(format: String? = null, quality: Int? = null, maxWidth: Int? = null, maxHeight: Int? = null, everyNthFrame: Int? = null)

Properties

everyNthFrame
Link copied to clipboard
val everyNthFrame: Int? = null
Send every n-th frame.
format
Link copied to clipboard
val format: String? = null
Image compression format.
maxHeight
Link copied to clipboard
val maxHeight: Int? = null
Maximum screenshot height.
maxWidth
Link copied to clipboard
val maxWidth: Int? = null
Maximum screenshot width.
quality
Link copied to clipboard
val quality: Int? = null
Compression quality from range 0..

Sources

jvm source
Link copied to clipboard